crypto/tls.clientHelloMsg.sessionId (field)
14 uses
crypto/tls (current package)
handshake_client.go#L125: hello.sessionId = make([]byte, 32)
handshake_client.go#L126: if _, err := io.ReadFull(config.rand(), hello.sessionId); err != nil {
handshake_client.go#L856: return hs.session != nil && hs.hello.sessionId != nil &&
handshake_client.go#L857: bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
handshake_client_tls13.go#L199: if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_messages.go#L75: sessionId []byte
handshake_messages.go#L351: b.AddBytes(m.sessionId)
handshake_messages.go#L422: !readUint8LengthPrefixed(&s, &m.sessionId) {
handshake_messages.go#L684: sessionId: slices.Clone(m.sessionId),
handshake_server.go#L525: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server_tls13.go#L161: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server_tls13.go#L623: !bytes.Equal(ch.sessionId, ch1.sessionId) ||
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |